home *** CD-ROM | disk | FTP | other *** search
/ Way Cool Games 1 / Quantum Axcess - Way Cool Games.iso / waycool.mst < prev   
Text File  |  1994-02-27  |  9KB  |  283 lines

  1. '**************************************************************************
  2. '*                      Way Cool Installation Script
  3. '**************************************************************************
  4.  
  5. '$DEFINE DEBUG  ''Define for script development/debugging
  6.  
  7. '$INCLUDE 'setupapi.inc'
  8. '$INCLUDE 'msdetect.inc'
  9.  
  10. ''Dialog ID's
  11. CONST WELCOME       = 100
  12. CONST ASKQUIT       = 200
  13. CONST DESTPATH      = 300
  14. CONST EXITFAILURE   = 400
  15. CONST EXITQUIT      = 600
  16. CONST EXITSUCCESS   = 700
  17. CONST OPTIONS       = 800
  18. CONST APPHELP       = 900
  19. CONST BADPATH       = 6400
  20. CONST TOOBIG        = 6300
  21.  
  22. ''Bitmap ID
  23. CONST LOGO = 1
  24.  
  25. GLOBAL DEST$        ''Default destination directory.
  26. GLOBAL OPTCUR$      ''Option selection from option dialog.
  27.  
  28. DECLARE SUB Install
  29. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  30. Declare Function ShowWindow Lib "User" (hWnd%, nCmdShow%) As Integer
  31.  
  32.  
  33.  
  34. INIT:
  35.      i% = ShowWindow(HwndFrame(), 3)
  36.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  37.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  38.  
  39.     SetBitmap CUIDLL$, LOGO
  40.     SetTitle "300+ WayCool Games for Windows - Setup"
  41.  
  42.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  43.     IF szInf$ = "" THEN
  44.     szInf$ = GetSymbolValue("STF_CWDDIR") + "WayCool.INF"
  45.     END IF
  46.     ReadInfFile szInf$
  47.  
  48.     OPTCUR$ = "1"
  49.     DEST$ = "C:\WAYCOOL"
  50.  
  51. '$IFDEF DEBUG
  52.     i% = SetSizeCheckMode(scmOnIgnore)    '' could use scmOff; def = scmOnFatal
  53.     WinDrive$ = MID$(GetWindowsDir, 1, 1)
  54.     IF IsDriveValid(WinDrive$) = 0 THEN
  55.     i% = DoMsgBox("Windows drive ('"+WinDrive$+"') is not a valid drive.", "DEBUG", MB_TASKMODAL+MB_ICONHAND+MB_OK)
  56.     GOTO QUIT
  57.     END IF
  58. '$ENDIF ''DEBUG
  59.  
  60. i% = ShowWindow(HwndFrame(), 3)
  61.  
  62. WELCOME:
  63.     sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
  64.     IF sz$ = "CONTINUE" THEN
  65.     UIPop 1
  66.     ELSE
  67.     GOSUB ASKQUIT
  68.     GOTO WELCOME
  69.     END IF
  70.  
  71.  
  72.  
  73. GETPATH:
  74.     SetSymbolValue "EditTextIn", DEST$
  75.     SetSymbolValue "EditFocus", "END"
  76. GETPATHL1:
  77.     sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, HELPPROC$)
  78.     DEST$ = GetSymbolValue("EditTextOut")
  79.  
  80.     IF sz$ = "CONTINUE" THEN
  81.     IF IsDirWritable(DEST$) = 0 THEN
  82.         GOSUB BADPATH
  83.         GOTO GETPATHL1
  84.     END IF
  85.     UIPop 1
  86.     ELSEIF sz$ = "REACTIVATE" THEN
  87.     GOTO GETPATHL1
  88.     ELSEIF sz$ = "BACK" THEN
  89.     UIPop 1
  90.     GOTO WELCOME
  91.     ELSE
  92.     GOSUB ASKQUIT
  93.     GOTO GETPATH
  94.     END IF
  95.  
  96.                
  97.     SrcDir$ = MakePath(GetSymbolValue("STF_SRCDIR"),"install")
  98.     CreateDir DEST$, cmoNone
  99.  
  100.     OpenLogFile MakePath(DEST$, "SETUP.TXT"), 0
  101.     WriteToLogFile ""
  102.     WriteToLogFile "  User chose as destination directory: '" + DEST$ + "'"
  103.     WriteToLogFile ""
  104.     WriteToLogFile "May have had to create the directory: " + DEST$
  105.     WriteToLogFile ""
  106.     SetRestartDir DEST$
  107.     AddSectionFilesToCopyList "Files", SrcDir$, DEST$
  108.     AddSectionFilesToCopyList "System Files",SrcDir$, GetWindowsSysDir()
  109.     if DoesFileExist(MakePath(GetWindowsDir, "threed.vbx"),0) then
  110.     AddSectionFilesToCopyList "Vital vbxs", SrcDir$, GetWindowsDir()
  111.     Endif 
  112.     if DoesFileExist(MakePath(GetWindowsDir, "vbrun300.dll"),0) then
  113.     AddSectionFilesToCopyList "Vital dlls", SrcDir$, GetWindowsDir()
  114.     Endif 
  115.     AddSectionFilesToCopyList "Vital vbxs",SrcDir$, GetWindowsSysDir()
  116.     AddSectionFilesToCopyList "Vital dlls",SrcDir$, GetWindowsSysDir()
  117.     AddSectionFilesToCopyList "Help Files",SrcDir$, GetWindowsDir()
  118.     req& = GetCopyListCost(a$,b$,c$)
  119.     if req& = 0 THEN
  120.     CopyFilesInCopyList
  121.     else
  122.     sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
  123.     UIPop 1
  124.     dlg% = EXITFAILURE
  125.     GOTO QUITL1
  126.     Endif
  127.  
  128.     ini$ = MakePath(GetWindowsDir, "WAYCOOL.INI")
  129.     CreateIniKeyValue ini$, "Start", "File", MakePath(DEST$,"WAYCOOL.LST") , cmoNone
  130.     CreateIniKeyValue ini$, "Start",  "Path", DEST$  , cmoNone
  131.     CreateIniKeyValue ini$, "Start",  "GamePath", MakePath(MID$(SrcDir$, 1, 2),"GAMES") , cmoNone
  132.  
  133.     CreateProgmanGroup "Way Cool Windows Games", "", cmoNone
  134.     ShowProgmanGroup  "Way Cool Windows Games", 1, cmoNone
  135.     CreateProgmanItem "Way Cool Windows Games", "WayCool", MakePath(DEST$,"WAYCOOL.EXE"), "", cmoOverwrite
  136.     CreateProgmanItem "Way Cool Windows Games", "Readme", "notepad.exe "+MakePath(DEST$,"README.TXT"), "", cmoOverwrite
  137.  
  138.     AddDos5Help "WAYCOOL", "WayCool games for Windows"+chr$(10)+"A Way Cool CD-ROM by Quantum Axcess.", cmoNone
  139.     CloseLogFile
  140.  
  141.  
  142.     IF RestartListEmpty() = 0 THEN
  143.     dlg% = DoMsgBox("System files in use.  Setup must exist Windows, copy these files, and restart Windows.","Problem",0)
  144.     dlg% = ExitExecRestart
  145.     ENDIF    
  146.  
  147.  
  148.  
  149. QUIT:
  150.     ON ERROR GOTO ERRQUIT
  151.  
  152.     IF ERR = 0 THEN
  153.     dlg% = EXITSUCCESS
  154.     ELSEIF ERR = STFQUIT THEN
  155.     dlg% = EXITQUIT
  156.     ELSE
  157.     dlg% = EXITFAILURE
  158.     END IF
  159. QUITL1:
  160.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  161.     IF sz$ = "REACTIVATE" THEN
  162.     GOTO QUITL1
  163.     END IF
  164.     UIPop 1
  165.  
  166.     END
  167.  
  168. ERRQUIT:
  169.     i% = DoMsgBox("CD-ROM disc is damaged please call Quantum Axcess tecnical support at (614) 228-3903!", "Setup Message", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  170.     END
  171.  
  172.  
  173.  
  174. BADPATH:
  175.     sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfo0DlgProc", 0, "")
  176.     IF sz$ = "REACTIVATE" THEN
  177.     GOTO BADPATH
  178.     END IF
  179.     UIPop 1
  180.     RETURN
  181.  
  182.  
  183.  
  184. ASKQUIT:
  185.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  186.  
  187.     IF sz$ = "EXIT" THEN
  188.     UIPopAll
  189.     ERROR STFQUIT
  190.     ELSEIF sz$ = "REACTIVATE" THEN
  191.     GOTO ASKQUIT
  192.     ELSE
  193.     UIPop 1
  194.     END IF
  195.     RETURN
  196.  
  197.  
  198.  
  199. '**
  200. '** Purpose:
  201. '**     Builds the copy list and performs all installation operations.
  202. '** Arguments:
  203. '**     none.
  204. '** Returns:
  205. '**     none.
  206. '*************************************************************************
  207. 'SUB Install STATIC
  208. '
  209. '    SrcDir$ = MakePath(GetSymbolValue("STF_SRCDIR"),"install")
  210. '    CreateDir DEST$, cmoNone
  211. '        i%=DoMsgBox(SrcDir$,"Source",0)
  212. '        i%=DoMsgBox(DEST$,"Destination",0)
  213. '
  214. '    OpenLogFile MakePath(DEST$, "SETUP.TXT"), 0
  215. '    WriteToLogFile ""
  216. '    WriteToLogFile "  User chose as destination directory: '" + DEST$ + "'"
  217. '    WriteToLogFile ""
  218. '    WriteToLogFile "May have had to create the directory: " + DEST$
  219. '    WriteToLogFile ""
  220. '    SetRestartDir DEST$
  221. '    AddSectionFilesToCopyList "Files", SrcDir$, DEST$
  222. '    AddSectionFilesToCopyList "System Files",SrcDir$, GetWindowsSysDir()
  223. '    if DoesFileExist(MakePath(GetWindowsDir, "threed.vbx"),0) then
  224. '        AddSectionFilesToCopyList "Vital vbxs", SrcDir$, GetWindowsDir()
  225. '    Endif 
  226. '    if DoesFileExist(MakePath(GetWindowsDir, "vbrun300.dll"),0) then
  227. '        AddSectionFilesToCopyList "Vital dlls", SrcDir$, GetWindowsDir()
  228. '    Endif 
  229. '    AddSectionFilesToCopyList "Vital vbxs",SrcDir$, GetWindowsSysDir()
  230. '    AddSectionFilesToCopyList "Vital dlls",SrcDir$, GetWindowsSysDir()
  231. '    if GetCopyListCost(a$,b$,c$) = 0 then  
  232. '        CopyFilesInCopyList
  233. '    else
  234. '        sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
  235. '        UIPop 1
  236. '        GOTO GETPATH
  237. '    Endif
  238. '
  239. '    ini$ = MakePath(GetWindowsDir, "WAYCOOL.INI")
  240. '    CreateIniKeyValue ini$, "Start", "File", MakePath(DEST$,"WAYCOOL.LST") , cmoNone
  241. '    CreateIniKeyValue ini$, "Start",  "Path", DEST$  , cmoNone
  242. '    CreateIniKeyValue ini$, "Start",  "GamePath", MakePath(MID$(SrcDir$, 1, 2),"GAMES") , cmoNone
  243. '
  244. '    CreateProgmanGroup "Way Cool Windows Games", "", cmoNone
  245. '    ShowProgmanGroup  "Way Cool Windows Games", 1, cmoNone
  246. '    CreateProgmanItem "Way Cool Windows Games", "WayCool", MakePath(DEST$,"WAYCOOL.EXE"), "", cmoOverwrite
  247. '    CreateProgmanItem "Way Cool Windows Games", "Readme", "notepad.exe "+MakePath(DEST$,"README.TXT"), "", cmoOverwrite
  248. '
  249. '    AddDos5Help "WAYCOOL", "WayCool games for Windows"+chr$(10)+"A Way Cool CD-ROM by Quantum Axcess.", cmoNone
  250. '    CloseLogFile
  251. '
  252. '
  253. '    IF RestartListEmpty() = 0 THEN
  254. '        dlg% = DoMsgBox("System files in use.  Setup must exist Windows, copy these files, and restart Windows.","Problem",0)
  255. '        dlg% = ExitExecRestart
  256. '    ENDIF    
  257. 'END SUB
  258.  
  259.  
  260.  
  261. '**
  262. '** Purpose:
  263. '**     Appends a file name to the end of a directory path,
  264. '**     inserting a backslash character as needed.
  265. '** Arguments:
  266. '**     szDir$  - full directory path (with optional ending "\")
  267. '**     szFile$ - filename to append to directory
  268. '** Returns:
  269. '**     Resulting fully qualified path name.
  270. '*************************************************************************
  271. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  272.     IF szDir$ = "" THEN
  273.     MakePath = szFile$
  274.     ELSEIF szFile$ = "" THEN
  275.     MakePath = szDir$
  276.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  277.     MakePath = szDir$ + szFile$
  278.     ELSE
  279.     MakePath = szDir$ + "\" + szFile$
  280.     END IF
  281. END FUNCTION
  282.  
  283.